#! /bin/sh
cd $(dirname "$0")

res=`alert --warning "ZapfDingbats font will be installed in /boot/home/config/fonts. Do you want to" Abort Continue`
if [ "$res" = "Continue" ] ; then
	cp -R fonts/psfonts /boot/home/config/fonts/
	res=`alert --info "Font installed. Now open the Fonts preference application and click on 'Rescan' to make the font available for usage." "Bye" "Open Fonts Preference Panel"`
	if [ "$res" = "Open Fonts Preference Panel" ] ; then
		/boot/preferences/Fonts
	fi
fi 
